API
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Default.cs 230B

123456789101112
  1. using System.ComponentModel.DataAnnotations;
  2. namespace UnivateProperties_API.Model.Misc
  3. {
  4. public class Default
  5. {
  6. [Key]
  7. public string Id { get; set; }
  8. public string Value { get; set; }
  9. }
  10. }