with public properties

This commit is contained in:
2019-01-10 12:28:04 +00:00
parent e1c14d9739
commit e1b692e3a5

View File

@ -10,19 +10,19 @@ namespace Yavsc.Models.Streaming
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)] [Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Display(Name="FlowId")] [Display(Name="FlowId")]
// set by the server, unique // set by the server, unique
long Id { get; set; } public long Id { get; set; }
// a title for this flow // a title for this flow
string Title { get; set; } public string Title { get; set; }
// a little description // a little description
string Pitch { get; set; } public string Pitch { get; set; }
// The stream type // 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 // A name where to save this stream, relative to user's files root
string DifferedFileName { get; set; } public string DifferedFileName { get; set; }
[Required] [Required]
public string OwnerId {get; set; } public string OwnerId {get; set; }