mirror of
https://github.com/DevExpress/netcore-winforms-demos.git
synced 2025-12-24 10:30:57 +00:00
16 lines
429 B
C#
16 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
|
|
namespace DevExpress.DevAV {
|
|
public class State {
|
|
[Key]
|
|
public StateEnum ShortName { get; set; }
|
|
public string LongName { get; set; }
|
|
public byte[] Flag48px { get; set; }
|
|
public byte[] Flag24px { get; set; }
|
|
}
|
|
}
|
|
|