17 lines
428 B
C#
Raw Normal View History

2024-11-29 19:54:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectFamilyBudget.Entities;
public class TempIncomePeopleIncome
{
public int Id { get; private set; }
public int PeopleId { get; private set; }
public DateTime DataReciept { get; private set; }
2024-11-29 19:54:44 +04:00
public int IncomeId { get; private set; }
public int Sum { get; private set; }
}