- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using VCommon.VApplication.DataAnnotations;
- namespace VCommon.VAspNetCoreExample.VApp.Example.Dto
- {
- public class ExampleInput
- {
- [ExampleValue(100)]
- public int ExampleInt { get; set; }
- }
- }
|