From 32a9fdd142f0949fede799af0a4123f548327b61 Mon Sep 17 00:00:00 2001 From: Daniel Gyulai Date: Mon, 23 Nov 2020 19:54:32 +0100 Subject: [PATCH] Remove unused usings in CaseFilter --- CoviDok/Api/Request/CaseFilter.cs | 48 ++++++++++++++----------------- 1 file changed, 21 insertions(+), 27 deletions(-) diff --git a/CoviDok/Api/Request/CaseFilter.cs b/CoviDok/Api/Request/CaseFilter.cs index 7376d17..75fdecc 100644 --- a/CoviDok/Api/Request/CaseFilter.cs +++ b/CoviDok/Api/Request/CaseFilter.cs @@ -1,27 +1,21 @@ -using CoviDok.Data; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace CoviDok.Api.Request -{ - public class CaseFilter - { - public string SessionId { get; set; } - public int DoctorId { get; set; } - public int ParentId { get; set; } - public int ChildId { get; set; } - public int Assignee { get; set; } - public string Title { get; set; } - - public CaseFilter() - { - DoctorId = int.MinValue; - ParentId = int.MinValue; - ChildId = int.MinValue; - Assignee = int.MinValue; - Title = null; - } - } -} +namespace CoviDok.Api.Request +{ + public class CaseFilter + { + public string SessionId { get; set; } + public int DoctorId { get; set; } + public int ParentId { get; set; } + public int ChildId { get; set; } + public int Assignee { get; set; } + public string Title { get; set; } + + public CaseFilter() + { + DoctorId = int.MinValue; + ParentId = int.MinValue; + ChildId = int.MinValue; + Assignee = int.MinValue; + Title = null; + } + } +}