mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
653 B
22 lines
653 B
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ErsatzTV.Core.Domain |
|
{ |
|
public class Channel |
|
{ |
|
public Channel(Guid uniqueId) => UniqueId = uniqueId; |
|
|
|
public int Id { get; set; } |
|
public Guid UniqueId { get; init; } |
|
public int Number { get; set; } |
|
public string Name { get; set; } |
|
public string Logo { get; set; } |
|
public int FFmpegProfileId { get; set; } |
|
public FFmpegProfile FFmpegProfile { get; set; } |
|
public StreamingMode StreamingMode { get; set; } |
|
|
|
public List<Playout> Playouts { get; set; } |
|
// public SourceMode Mode { get; set; } |
|
} |
|
}
|
|
|