Files
BeWoPlaner/Data/Models/XRechnung/XRSellerContact.cs

17 lines
345 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Data.Models.XRechnung
{
public class XRSellerContact
{
public string Name { get; set; }
public string Department { get; set; }
public string Phone { get; set; }
public string EMail { get; set; }
}
}