diff --git a/src/Yavsc.Server/Models/Streaming/LiveFlow.cs b/src/Yavsc.Server/Models/Streaming/LiveFlow.cs index 5d7d41cd..483e37ab 100644 --- a/src/Yavsc.Server/Models/Streaming/LiveFlow.cs +++ b/src/Yavsc.Server/Models/Streaming/LiveFlow.cs @@ -10,19 +10,19 @@ namespace Yavsc.Models.Streaming [Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)] [Display(Name="FlowId")] // set by the server, unique - long Id { get; set; } + public long Id { get; set; } // a title for this flow - string Title { get; set; } + public string Title { get; set; } // a little description - string Pitch { get; set; } + public string Pitch { get; set; } // The stream type - string MediaType { get; set; } + public string MediaType { get; set; } // A name where to save this stream, relative to user's files root - string DifferedFileName { get; set; } + public string DifferedFileName { get; set; } [Required] public string OwnerId {get; set; }