1234567891011121314151617181920 |
- using Ips.Library.Entity;
- namespace Ips.Sps.Scheduling
- {
- public class RunAdCard
- {
- public int CardId { get; set; }
- public string CardName { get; set; }
- public string CardCode { get; set; }
- public AdCardType CardType { get; set; }
- public AdTriggerMode TriggerMode { get; set; }
- public AdClockType ClockType { get; set; }
- public long ClockFreq { get; set; }
- public int DdcFreq { get; set; }
- public int Mutil { get; set; }
- public string StorePath { get; set; }
- public List<RunAdCh> Channels { get; set; } = new List<RunAdCh>();
- }
- }
|