Skip to content

Commit

Permalink
ExpenseCategory Query:ExpenseApplication/Schemes/Dtos/ExpenseCategory.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
rsemihkoca committed Jan 20, 2024
1 parent 31b3c03 commit 0da60bf
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions ExpenseApplication/Schemes/Dtos/ExpenseCategory.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
namespace Infrastructure.Dtos;

public class ExpenseCategory
public class CreateExpenseCategoryRequest
{

public string CategoryName { get; set; }
}

public class UpdateExpenseCategoryRequest
{
public string CategoryName { get; set; }
}

public class ExpenseCategoryResponse
{
public int CategoryId { get; set; } // (Primary Key)
public string CategoryName { get; set; }
}

0 comments on commit 0da60bf

Please sign in to comment.