ExampleInput.cs 317 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using VCommon.VApplication.DataAnnotations;
  6. namespace VCommon.VAspNetCoreExample.VApp.Example.Dto
  7. {
  8. public class ExampleInput
  9. {
  10. [ExampleValue(100)]
  11. public int ExampleInt { get; set; }
  12. }
  13. }