17 lines
421 B
C#
17 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Company.Domain.FileEmployerAgg;
|
|
|
|
namespace Company.Domain.FileAndFileEmployerAgg;
|
|
|
|
public class FileAndFileEmployer
|
|
{
|
|
public long FileId { get; set; }
|
|
public File1.File1 File1 { get; set; }
|
|
|
|
public long FileEmployerId { get; set; }
|
|
public FileEmployer FileEmployer { get; set; }
|
|
} |