24 lines
425 B
C#
24 lines
425 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.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
|
|||
|
|
}
|
|||
|
|
}
|