summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Seguros/TupleList.cs
blob: b5d7763b2d165d47c954a2ab2d70f0e6574408e2 (plain)
1
2
3
4
5
6
7
8
9
using System;
using System.Collections.ObjectModel;

namespace Gestor.Model.Domain.Seguros;

public class TupleList
{
	public ObservableCollection<Tuple<string, string, string>> Tuples { get; set; }
}