27 lines
510 B
C#
27 lines
510 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using MapTo;
|
|
|
|
namespace BlueWest.Data
|
|
{
|
|
[MapFrom( typeof(UserUpdateDto))]
|
|
[UseUpdate]
|
|
public partial class User
|
|
{
|
|
public TimeSpan Id { get; } = TimeSpan.Zero;
|
|
public string Name { get; set; }
|
|
|
|
public List<FinanceTransaction> FinanceTransactions { get; }
|
|
|
|
|
|
public User(TimeSpan id, string name)
|
|
{
|
|
Id = id;
|
|
Name = name;
|
|
}
|
|
|
|
public User()
|
|
{
|
|
}
|
|
}
|
|
} |