Ignore:
Timestamp:
07/21/20 12:05:35 (4 years ago)
Author:
Mile Jankuloski <mile.jankuloski@…>
Branches:
master
Children:
333cdac, 92a1f41
Parents:
dba4ca9 (diff), f33b0d4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of https://develop.finki.ukim.mk/git/farmatiko
Updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • FarmatikoData/Models/Pharmacy.cs

    rdba4ca9 r0c48bbb  
    11using System;
    22using System.Collections.Generic;
     3using System.ComponentModel.DataAnnotations;
    34using System.Text;
     5using FarmatikoData.Base;
    46using Microsoft.EntityFrameworkCore;
    57
    68namespace FarmatikoData.Models
    79{
    8     public class Pharmacy
     10    public class Pharmacy : BaseEntity
    911    {
    1012        public Pharmacy() { }
     13        [Required]
    1114        public string Name { get; set; }
     15        [Required]
    1216        public string Location { get; set; }
     17        [Required]
    1318        public string Address { get; set; }
    1419        public bool WorkAllTime { get; set; }
Note: See TracChangeset for help on using the changeset viewer.