Blog.Core/Blog.Core.Model/ViewModels/EnumDemoDto.cs
2022-03-11 15:01:06 +08:00

24 lines
425 B
C#

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