Skip to content

Commit

Permalink
add missing client dto properties
Browse files Browse the repository at this point in the history
  • Loading branch information
GamiDroid authored and Psypher9 committed Jun 3, 2024
1 parent d0ef9f2 commit e74ad85
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Clockify.Net/Models/Clients/ClientDto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,11 @@ public class ClientDto
public string? Id { get; set; }
public string? Name { get; set; }
public string? WorkspaceId { get; set; }
public string? Email { get; set; }
public string? Address { get; set; }
public string? CurrencyCode { get; set; }
public string? CurrencyId { get; set; }
public string? Note { get; set; }
public bool Archived { get; set; }
}
}

0 comments on commit e74ad85

Please sign in to comment.