2026-01-21 15:07:20 +00:00
|
|
|
namespace RealCV.Application.Models;
|
2026-01-18 19:20:50 +01:00
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
}
|