Files
netcore-winforms-demos/OutlookInspiredApp/DevExpress.DevAV/DevExpress.DevAV.Data/State.cs
Alexander Mikhailov a2371dfb0b 19.1.3-ctp
2019-05-16 10:20:43 +03:00

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; }
}
}