Files
netcore-winforms-demos/OutlookInspiredApp/DevExpress.DevAV/DevExpress.DevAV.Data/State.cs
Alexander Mikhailov c9fc96eaac #Outlook - 19.1
2019-05-06 09:45:48 +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; }
}
}