forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
15 lines
368 B
C#
15 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.DataModels;
|
|
|
|
public class TourAndTourHistoryDataModel
|
|
{
|
|
public required string TourName { get; set; }
|
|
public required List<string> Histories { get; set; }
|
|
public required List<string> Data { get; set; }
|
|
}
|