divolo
❔ new to programming and can't figure out
{
internal class Appointment
{
public string? title;
public string? date;
public string? time;
public string? location;
public string Title { get; set; }
public string Date { get; set; }
public string Time { get; set; }
public string? Location { get; set; }
} right?
} right?
36 replies
❔ new to programming and can't figure out
like this
public string? Title { get => title; set => title = value; }
public string? Date { get => date; set => date = value; }
public string? Time { get => time; set => time = value; }
public string? Location { get => location; set => location = value; }
36 replies