17 lines
524 B
C#
17 lines
524 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|
{
|
|
public partial class IaVAllChannel
|
|
{
|
|
public string ChanId { get; set; } = null!;
|
|
public string ChanName { get; set; } = null!;
|
|
public string DevId { get; set; } = null!;
|
|
public string DevName { get; set; } = null!;
|
|
public string ChanType { get; set; } = null!;
|
|
public string UseState { get; set; } = null!;
|
|
public int? SeqNo { get; set; }
|
|
}
|
|
}
|