Format code User.cs

This commit is contained in:
CodeLiturgy 2022-08-06 11:02:31 +01:00
parent 61484bff16
commit 40b249f10b
1 changed files with 6 additions and 14 deletions

View File

@ -1,10 +1,6 @@

using System;
using System;
using System.Collections.Generic;
using System.Transactions;
using BlueWest.Collections;
using MapTo;
using BlueWest.Collections;
namespace BlueWest.Data
{
@ -12,12 +8,12 @@ namespace BlueWest.Data
[MapFrom(typeof(UserUpdateDto))]
public partial class User
{
public TimeSpan Id { get; } = TimeSpan.Zero;
public string Name { get; set; }
public TimeSpan Id { get; } = TimeSpan.Zero;
public string Name { get; set; }
public List<FinanceTransaction> FinanceTransactions { get; }
public List<FinanceTransaction> FinanceTransactions { get; }
public User(TimeSpan id, string name)
{
Id = id;
@ -26,10 +22,6 @@ namespace BlueWest.Data
public User()
{
}
}
}
}