All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Created Dockerfile for packing up API and Web projects as Docker image
12 lines
271 B
C#
12 lines
271 B
C#
|
|
namespace YABA.API.ViewModels
|
|
{
|
|
public class UserResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
public DateTimeOffset CreatedOn { get; set; }
|
|
public DateTimeOffset LastModified { get; set; }
|
|
}
|
|
}
|