REORG
This commit is contained in:
parent
8d68ee380a
commit
45514010f2
3505 changed files with 154 additions and 523 deletions
|
|
@ -1,32 +0,0 @@
|
|||
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