11 lines
339 B
C#
11 lines
339 B
C#
|
|
namespace TrueCV.Application.Models;
|
||
|
|
|
||
|
|
public sealed record TimelineOverlap
|
||
|
|
{
|
||
|
|
public required string Company1 { get; init; }
|
||
|
|
public required string Company2 { get; init; }
|
||
|
|
public required DateOnly OverlapStart { get; init; }
|
||
|
|
public required DateOnly OverlapEnd { get; init; }
|
||
|
|
public required int Months { get; init; }
|
||
|
|
}
|