12 lines
212 B
C#
12 lines
212 B
C#
namespace IM_API.Models
|
|
{
|
|
public partial class Device
|
|
{
|
|
public DeviceDtype DtypeEnum
|
|
{
|
|
get => (DeviceDtype)Dtype;
|
|
set => Dtype = (sbyte)value;
|
|
}
|
|
}
|
|
}
|