reorg
This commit is contained in:
parent
d000f77098
commit
40e8e08690
3487 changed files with 39 additions and 21 deletions
32
src/Yavsc.Abstract/Streaming/ILiveFlow.cs
Normal file
32
src/Yavsc.Abstract/Streaming/ILiveFlow.cs
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Yavsc.Abstract.Streaming
|
||||
{
|
||||
|
||||
public interface ILiveFlow {
|
||||
|
||||
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
[Display(Name="FlowId")]
|
||||
// set by the server, unique
|
||||
long Id { get; set; }
|
||||
|
||||
// a title for this flow
|
||||
string Title { get; set; }
|
||||
|
||||
// a little description
|
||||
string Pitch { get; set; }
|
||||
|
||||
// The stream type
|
||||
string MediaType { get; set; }
|
||||
|
||||
// A name where to save this stream, relative to user's files root
|
||||
string DifferedFileName { get; set; }
|
||||
|
||||
int SequenceNumber { get; set; }
|
||||
|
||||
[Required]
|
||||
string OwnerId {get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue