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

Locations.cs 397B

1234567891011121314
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace ProRestaurant.Models.Misc
  4. {
  5. public class Locations
  6. {
  7. [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
  8. [Key]
  9. public int Id { get; set; }
  10. public string ImageStore { get; set; }
  11. public string CategoryStore { get; set; }
  12. }
  13. }