using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tiobon.Core.Model.ViewModels { public class EnumDemoDto { public int Id { get; set; } /// /// Type Description balabala /// public EnumType Type { get; set; } } public enum EnumType { foo, bar, baz } }