Torma Kristóf
017f7a2e7b
All checks were successful
continuous-integration/drone/push Build is passing
13 lines
320 B
C#
13 lines
320 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace hanyadikhetvan.DTO
|
|
{
|
|
public class HanyadikHetVanDTO
|
|
{
|
|
public int HanyadikHet => (DateTime.Now - (DateTime.Parse(Environment.GetEnvironmentVariable("HANYADIKHET_STARTDATE")))).Days / 7;
|
|
}
|
|
}
|