source: FarmatikoData/Models/RequestPharmacyHead.cs@ 1454207

Last change on this file since 1454207 was 1454207, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Change structure, Add repo, services & controllers

  • Property mode set to 100644
File size: 429 bytes
Line 
1using FarmatikoData.Base;
2using System;
3using System.Collections.Generic;
4using System.ComponentModel.DataAnnotations;
5using System.Text;
6
7namespace FarmatikoData.Models
8{
9 public class RequestPharmacyHead : BaseEntity
10 {
11 public RequestPharmacyHead()
12 {
13 }
14 [Required]
15 public PharmacyHead Head { get; set; }
16 [Required]
17 public Pharmacy Pharmacy { get; set; }
18
19 }
20}
Note: See TracBrowser for help on using the repository browser.