with public properties
This commit is contained in:
parent
a312c21b49
commit
feeaefe3b5
1 changed files with 5 additions and 5 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue