Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • FarmatikoData/Models/Pharmacy.cs

    r171f106 r92a1f41  
    11using System;
    22using System.Collections.Generic;
    3 using System.ComponentModel.DataAnnotations;
    43using System.Text;
    5 using FarmatikoData.Base;
    64using Microsoft.EntityFrameworkCore;
    75
    86namespace FarmatikoData.Models
    97{
    10     public class Pharmacy : BaseEntity
     8    public class Pharmacy
    119    {
    1210        public Pharmacy() { }
    13         [Required]
    1411        public string Name { get; set; }
    15         [Required]
    1612        public string Location { get; set; }
    17         [Required]
    1813        public string Address { get; set; }
    1914        public bool WorkAllTime { get; set; }
Note: See TracChangeset for help on using the changeset viewer.