mirror of
https://github.com/DevExpress/netcore-winforms-demos.git
synced 2026-01-03 23:34:14 +00:00
#Outlook - 19.1
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user