Format code User.cs
This commit is contained in:
parent
61484bff16
commit
40b249f10b
|
@ -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()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue