From e1b692e3a52fc48673856a99276139c5eca43e6a Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Thu, 10 Jan 2019 12:28:04 +0000 Subject: [PATCH] with public properties --- src/Yavsc.Server/Models/Streaming/LiveFlow.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; }