11 lines
260 B
C#
11 lines
260 B
C#
using System;
|
|
|
|
namespace BackupPipefy.Domain.Entities
|
|
{
|
|
public class PipefyCard
|
|
{
|
|
public long Id { get; set; } // ID do card
|
|
public string JsonData { get; set; } // JSON bruto retornado pelo GraphQL
|
|
}
|
|
}
|